Github Pages
Reactでgithub pages使う方法
https://web-begginer-log.com/create-react-app-gh-pages/
code: package.json
{
"scripts": {
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
}
"homepage": "./"
}
これを追加する必要がある
SPA
っぽい挙動にしたい場合
React GitHub Pagesにデプロイ - create-react-appで作ったReactプロジェクトをGitHub Pagesにデプロイしてみましょう。